home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 1 / LSD Compendium Deluxe 1.iso / a / programming / assemblers / cas.lha / link.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-09  |  234 b   |  10 lines

  1. typedef struct FileBuf *FileBuf;
  2. struct FileBuf {
  3.    char *Name;
  4.    long Loc, Files, Segs, Gaps, Syms, Exps, Relocs;
  5.    char **File; Segment Seg; Gap G; Symbol *Sym;
  6. };
  7. extern FileBuf FTab;
  8. extern int Fs;
  9. extern void Link(char *Hex);
  10.